home *** CD-ROM | disk | FTP | other *** search
/ Megahits 6 / Megahits 6 (1995)(GTI - Rhein-Main-Soft)(DE)(Disc 2 of 2)[!].iso / time_ungepackt / time_271_300 / time284 / virusworkshop / install.script < prev    next >
Text File  |  1995-07-15  |  2KB  |  64 lines

  1. ; Script file to install reqtools.library and decrunch.library.
  2. ; Based on Nico François's reqtools installation script.
  3. ; Based on Georg Hoermann`s library installation script.
  4. ; Special thanks must go to Joachim for the bugreport concerning
  5. ; the old script ! Thanks FRED !
  6.  
  7.  
  8. FailAt 21
  9. Echo "                                             "
  10. Echo "VirusWorkshop 3.2 Library Installation Script"
  11. Echo "---------------------------------------------"
  12. Echo "            (C) by T.R.S.I. 1994             "
  13. Echo "                                             "
  14.  
  15.  
  16. Version >NIL: LIBS:reqtools.library
  17. If NOT ERROR
  18.    Echo "Version of reqtools.library already installed:"
  19.    Version LIBS:reqtools.library
  20. EndIf
  21. Ask "Install reqtools.library 2.2 ?"
  22. If NOT WARN
  23.    Echo "Installation of reqtools.library aborted!"
  24.    Skip INSTALLDECR
  25. EndIf
  26.  
  27.  
  28. Lab INSTALLDECR
  29. Version >NIL: LIBS:decrunch.library
  30. If NOT ERROR
  31.    Echo "Version of decrunch.library already installed:"
  32.    Version LIBS:decrunch.library
  33. EndIf
  34. Ask "Install decrunch.library Version 35.237 ?"
  35. If NOT WARN
  36.    Echo "Installation of decrunch.library aborted!"
  37.    Skip INSTALLFILE
  38. EndIf
  39. Copy libs/decrunch.library LIBS:decrunch.library
  40. Echo "decrunch.library copied to your LIBS: directory."
  41.  
  42. Lab INSTALLFILE
  43. Version >NIL: LIBS:FileID.library
  44. If NOT ERROR
  45.    Echo "Version of FileID.library already installed:"
  46.    Version LIBS:FileID.library
  47. EndIf
  48. Ask "Install FileID.library Version 4.1 ?"
  49. If NOT WARN
  50.    Echo "Installation of FileID.library aborted!"
  51.    Skip END
  52. EndIf
  53. Copy libs/FileID.library LIBS:FileID.library
  54. Echo "FileID.library copied to your LIBS: directory."
  55.  
  56.  
  57. Lab END
  58. Echo "End of installation script!"
  59. Wait 1
  60. EndCLI >NIL:
  61.  
  62.  
  63. ; T.R.S.I. The sleeping gods 1994
  64.